home *** CD-ROM | disk | FTP | other *** search
-
-
-
- #include <stdio.h>
- #include <sys/types.h>
- #include <time.h>
- #include <string.h>
-
- /*
- N1BXA,NOLAN,ARTHUR,J,JR,53149,10565 E DESERT COVE AVE,
- SCOTTSDALE,AZ, 85259,G,WA1FTK
- */
-
- #define CALL 0
- #define LNAME 1
- #define FNAME 2
- #define MI 3
- #define JR 4
- #define DOB 5
- #define STREET 6
- #define CITY 7
- #define STATE 8
- #define ZIP 9
- #define CLASS 10
- #define P_CALL 11
- #define FLEN 12
-
- /*
- Example 1 - Full Format
-
- N1BXA ARTHUR J. NOLAN JR Class: G 4/14/87
- 10565 E DESERT COVE AVE Born: 5/29/53
- SCOTTSDALE, AZ 85259 Prev: WA1FTK
-
-
- Example 2 - Mailing Label Format
-
- NOLAN J ARTHUR JR, N1BXA
- 10565 E DESERT COVE AVE
- SCOTTSDALE, AZ 85259
-
-
- Example 3 - Callbook Format
-
- N1BXA NOLAN J ARTHUR JR, 10565 E DESERT COVE AVE, SCOTTSDALE, AZ 85259
-
- */
-
-
-